body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

.container {
  width: 80%;
  margin: 30px auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 24px;
  margin: 10px 0;
  color: #004080;
}

.header h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #222;
}

.year {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.content h3 {
  margin-top: 40px;
  color: #004080;
  font-size: 20px;
  border-bottom: 2px solid #004080;
  padding-bottom: 5px;
}

.content h4 {
  margin-top: 30px;
  color: #333;
  font-size: 18px;
  text-decoration: underline;
}

.content p, .content li {
  line-height: 1.6;
  font-size: 16px;
}

ul {
  margin-left: 20px;
}

.signatures {
  margin-top: 40px;
  font-size: 16px;
}

/* Responsive additions for ACLU IT Policy page */

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .header {
    text-align: center;
  }
  .logo {
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
  }
  .content p,
  .content ul,
  .content h3,
  .content h4 {
    font-size: 1rem;
    line-height: 1.4;
  }
  .content ul {
    padding-left: 20px;
  }
  .signatures {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .signatures > div {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .content p,
  .content ul,
  .content h3,
  .content h4 {
    font-size: 0.9rem;
  }
  .signatures {
    font-size: 0.9rem;
  }
}
